
This resource creates a dynamic host token that can be used to initialize dynamic hosts.
| URL Parameters | |
|---|---|
| format | The format of the posted data. Can be either
html, json, or xml (default). This value overrides
the Accept header if both are present. |
Upon success, MarkLogic Server returns a status code of 201 (Created).
The response body includes a dynamic-host-token element if successful.
A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin role, or the following
privileges: http://marklogic.com/xdmp/privileges/manage-adminhttp://marklogic.com/xdmp/privileges/admin/issue-dynamic-host-token If the request targets a foreign cluster, a status code of 400 (Bad Request) is returned.
curl --anyauth --user admin:admin -i -X POST localhost:8002/manage/v2/clusters/Default/dynamic-host-token \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"dynamic-host-token": {"group": "Default","host": "join-host.foo.bar", "port":8001, "duration": "PT10M","comment": "some"}}'
==> returns a dynamic-host-token element in the response body.